home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / xulrunner-1.9.0.14 / chrome / pippki.jar / content / pippki / certManager.xul < prev    next >
Encoding:
Extensible Markup Language  |  2007-11-20  |  3.5 KB  |  84 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is mozilla.org code.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Netscape Communications Corp.
  19.    - Portions created by the Initial Developer are Copyright (C) 2001
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -   Bob Lord <lord@netscape.com>
  24.    -   Ian McGreer <mcgreer@netscape.com>
  25.    -
  26.    - Alternatively, the contents of this file may be used under the terms of
  27.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  28.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.    - in which case the provisions of the GPL or the LGPL are applicable instead
  30.    - of those above. If you wish to allow use of your version of this file only
  31.    - under the terms of either the GPL or the LGPL, and not to allow others to
  32.    - use your version of this file under the terms of the MPL, indicate your
  33.    - decision by deleting the provisions above and replace them with the notice
  34.    - and other provisions required by the GPL or the LGPL. If you do not delete
  35.    - the provisions above, a recipient may use your version of this file under
  36.    - the terms of any one of the MPL, the GPL or the LGPL.
  37.    -
  38.    - ***** END LICENSE BLOCK ***** -->
  39.  
  40. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  41.  
  42. <?xul-overlay href="chrome://pippki/content/MineOverlay.xul"?>
  43. <?xul-overlay href="chrome://pippki/content/OthersOverlay.xul"?>
  44. <?xul-overlay href="chrome://pippki/content/WebSitesOverlay.xul"?>
  45. <?xul-overlay href="chrome://pippki/content/CAOverlay.xul"?>
  46. <?xul-overlay href="chrome://pippki/content/OrphanOverlay.xul"?>
  47.  
  48. <!DOCTYPE dialog SYSTEM "chrome://pippki/locale/certManager.dtd">
  49.  
  50. <dialog id="certmanager" 
  51.     windowtype="mozilla:certmanager"
  52.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  53.         title="&certmgr.title;"
  54.         onload="LoadCerts();"
  55.         buttons="accept"
  56.         style="width: 48em; height: 32em;"
  57.         persist="screenX screenY width height">
  58.  
  59.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  60.   <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  61.   <script type="application/x-javascript" src="chrome://pippki/content/certManager.js"/>
  62.  
  63.   <vbox flex="1">
  64.     <tabbox id="certmanagertabs" flex="1" style="margin:5px" persist="selectedIndex">
  65.       <tabs id="certMgrTabbox">
  66.         <tab id="mine_tab" label="&certmgr.tab.mine;"/>
  67.         <tab id="others_tab" label="&certmgr.tab.others2;"/>
  68.         <tab id="websites_tab" label="&certmgr.tab.websites3;"/>
  69.         <tab id="ca_tab" label="&certmgr.tab.ca;" selected="true"/>
  70.         <tab id="orphan_tab" label="&certmgr.tab.orphan2;"/>
  71.       </tabs>
  72.       <tabpanels flex="1">
  73.         <vbox id="myCerts" flex="1"/>
  74.         <vbox id="othersCerts" flex="1"/>
  75.         <vbox id="webCerts" flex="1"/>
  76.         <vbox id="CACerts" flex="1"/>
  77.         <vbox id="OrphanCerts" flex="1"/>
  78.       </tabpanels>
  79.     </tabbox>
  80.  
  81.   </vbox>
  82.  
  83. </dialog>
  84.